home *** CD-ROM | disk | FTP | other *** search
/ Software Club 1 / Club Software (Micro Star) (1996).iso / pcest / install.bat < prev    next >
DOS Batch File  |  1994-10-16  |  1KB  |  50 lines

  1. echo off
  2. if %1a == a goto takedir
  3. cls
  4. echo  This will install the PC-Estimator shareware ystem on hard
  5. echo  disk %1 in a directory named PCSHARE.
  6. echo  It will also add (files=20, buffers=24) lines to your
  7. echo  Config.sys file in root directory. If this file does not exist,
  8. echo  it will be created.
  9. echo.
  10. echo  Press Ctrl-C to abort, or ...
  11. pause
  12. echo.
  13. echo  Creating PCSHARE directory and copying files...
  14. echo.
  15. md %1\pcshare
  16. copy *.* %1\pcshare
  17. c:
  18. cd\
  19. if not exist config.sys goto copycon
  20. copy config.sys+%1\pcshare\config.sys
  21. :copycon
  22. if exist config.sys goto alldone
  23. copy %1\pcshare\config.sys
  24. :alldone
  25. cls
  26. %1
  27. cd\pcshare
  28. echo.
  29. echo    ********************* Installation complete!!!!! *********************
  30. echo.
  31. echo    As a one-time procedure, please reboot your computer.
  32. echo    This will make your configuration file effective.
  33. echo.
  34. echo    Each time you wish to run the PC-Estimator shareware system,
  35. echo    first go to the PCSHARE hard disk directory where it is installed.
  36. echo    Then type PCEST to start the system.
  37. echo.
  38. echo    Thanks for using PC-Estimator shareware!
  39. echo    Please consider to register and become a user of the full
  40. echo    registration version of PC-Estimator.
  41. echo.
  42. pause
  43. goto quit
  44. :takedir
  45. echo  Syntax: "INSTALL x:" where x represents your hard disk.
  46. echo      For example, type INSTALL C: to install on drive C.
  47. pause
  48. :quit
  49.  
  50.